fix win32 build after removal of the colormap debug category
authorFridrich Štrba <fridrich.strba@bluewin.ch>
Fri, 21 Jan 2011 10:20:16 +0000 (11:20 +0100)
committerFridrich Štrba <fridrich.strba@bluewin.ch>
Fri, 21 Jan 2011 10:20:16 +0000 (11:20 +0100)
gdk/win32/gdkvisual-win32.c

index b1f9a797b1d1d4f0cc066154fa131f093546b024..54e6f99fe73aeb7cf8019680d602ff4a968794d4 100644 (file)
@@ -65,16 +65,12 @@ _gdk_visual_init (void)
   system_visual = g_object_new (GDK_TYPE_VISUAL, NULL);
   system_visual->screen = gdk_screen_get_default();
 
-  GDK_NOTE (COLORMAP, g_print ("BITSPIXEL=%d NUMCOLORS=%d\n",
-                              bitspixel, numcolors));
-
   if (rastercaps & RC_PALETTE)
     {
       const int sizepalette = GetDeviceCaps (_gdk_display_hdc, SIZEPALETTE);
       gchar *max_colors = getenv ("GDK_WIN32_MAX_COLORS");
       system_visual->type = GDK_VISUAL_PSEUDO_COLOR;
 
-      GDK_NOTE (COLORMAP, g_print ("SIZEPALETTE=%d\n", sizepalette));
       g_assert (sizepalette == 256);
 
       if (max_colors != NULL)